home *** CD-ROM | disk | FTP | other *** search
-
- ; module-definition file for mledit - used by LINK.EXE
-
- NAME MLEdit ; application's module name
-
- DESCRIPTION 'Test prog for Multiline Edit Controls'
-
- EXETYPE WINDOWS ; required for all Windows applications
-
- STUB 'WINSTUB.EXE' ; Generates error message if application
- ; is run without Windows
-
- ;CODE can be moved in memory and discarded/reloaded
- CODE PRELOAD MOVEABLE DISCARDABLE
-
- ;DATA must be MULTIPLE if program can be invoked more than once
- DATA PRELOAD MOVEABLE MULTIPLE
-
-
- HEAPSIZE 5000 ; expands as required
- STACKSIZE 10000 ; recommended minimum for Windows applications =5120
-
-
- ; All functions that will be called by any Windows routine
- ; MUST be exported.
-
- EXPORTS
- MainWndProc @1 ; name of window processing function
- TestDlg @2
- EditWndProc @3 ; name of subclassing WndProc - add to your .def
-
-
-